home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / Sound / Notes.r < prev    next >
Encoding:
Text File  |  1986-07-30  |  893 b   |  85 lines  |  [TEXT/ttxt]

  1. /* 
  2. *    Sound Demonstration Program
  3. *    written for the Boston MacWorld Expo
  4. *    using the Macintosh Programmer's Workshop
  5. *
  6. *    © 1986 Fred A. Huxham
  7. *
  8. *--------------------------------------
  9. *    This is Rez file that defines the
  10. *    square wave notes resource type
  11. *--------------------------------------
  12. *
  13. */
  14.  
  15.  
  16. type 'Note' {
  17.     array NoteArray {
  18.         unsigned integer;
  19.     };
  20. };
  21.  
  22. resource 'Note' (8888, "SqWvNotes", appheap, preload) {
  23.     {
  24.         11977;
  25.         11305;
  26.         10670;
  27.         10071;
  28.         9506;
  29.         8972;
  30.         8469;
  31.         7994;
  32.         7545;
  33.         7121;
  34.         6722;
  35.         6344;
  36.         5988;
  37.         5652;
  38.         5335;
  39.         5036;
  40.         4753;
  41.         4486;
  42.         4234;
  43.         3997;
  44.         3772;
  45.         3561;
  46.         3361;
  47.         3172;
  48.         2994;
  49.         2826;
  50.         2668;
  51.         2518;
  52.         2377;
  53.         2243;
  54.         2117;
  55.         1998;
  56.         1886;
  57.         1780;
  58.         1680;
  59.         1586;
  60.         1497;
  61.         1413;
  62.         1334;
  63.         1259;
  64.         1188;
  65.         1122;
  66.         1059;
  67.         999;
  68.         943;
  69.         890;
  70.         840;
  71.         793;
  72.         749;
  73.         707;
  74.         667;
  75.         629;
  76.         594;
  77.         561;
  78.         529;
  79.         500;
  80.         472;
  81.         445;
  82.         420;
  83.         397
  84.     }
  85. };